relational algebra - определение. Что такое relational algebra
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое relational algebra - определение

FAMILY OF ALGEBRAS USED FOR MODELLING THE DATA STORED IN RELATIONAL DATABASES, AND DEFINING QUERIES ON IT
Natural join; Antijoin; Relational Algebra; Semijoin; ▷; Join (relational algebra); ⋈; Relational logic; Theta join; Extended projection; ⟕; ⟖; ⟗; ⨝
Найдено результатов: 674
relational algebra         
<database, theory> A family of algebra with a well-founded semantics used for modelling the data stored in {relational databases}, and defining queries on it. The main operations of the relational algebra are the set operations (such as union, intersection, and cartesian product), selection (keeping only some lines of a table) and the projection (keeping only some columns). The relational data model describes how the data is structured. Codd's reduction algorithm can convert from {relational calculus} to relational algebra. (1997-02-17)
Relational algebra         
In database theory, relational algebra is a theory that uses algebraic structures with a well-founded semantics for modeling data, and defining queries on it. The theory was introduced by Edgar F.
Relational art         
TENDENCY IN FINE ART
Relational Aesthetics; Relational Esthetics; L'esthétique relationnelle; Relational Art; Esthétique relationnelle; Relation Aesthetics; Relation Art
Relational art or relational aesthetics is a mode or tendency in fine art practice originally observed and highlighted by French art critic Nicolas Bourriaud. Bourriaud defined the approach as "a set of artistic practices which take as their theoretical and practical point of departure the whole of human relations and their social context, rather than an independent and private space.
Projection (relational algebra)         
CONCEPT IN RELATIONAL ALGEBRA
Projection in relational algebra; Projection (database); Relational projection
In relational algebra, a projection is a unary operation written as \Pi_{a_1, ...,a_n}( R ), where R is a relation and a_1,...
Statistical relational learning         
SUBDISCIPLINE OF ARTIFICIAL INTELLIGENCE
Probabilistic relational model; Relational probabilistic model
Statistical relational learning (SRL) is a subdiscipline of artificial intelligence and machine learning that is concerned with domain models that exhibit both uncertainty (which can be dealt with using statistical methods) and complex, relational structure.
*-algebra         
ALGEBRA EQUIPPED WITH AN INVOLUTION OVER A *-RING
Star algebra; *-homomorphism; * algebra; Involution algebra; Involutive algebra; *-ring; Star-algebra; * ring; Involutory ring; Involutary ring; Star ring; *algebra; Involutive ring
In mathematics, and more specifically in abstract algebra, a *-algebra (or involutive algebra) is a mathematical structure consisting of two involutive rings and , where is commutative and has the structure of an associative algebra over . Involutive algebras generalize the idea of a number system equipped with conjugation, for example the complex numbers and complex conjugation, matrices over the complex numbers and conjugate transpose, and linear operators over a Hilbert space and Hermitian adjoints.
Abstract algebra         
  • groups]]. For example, monoids are [[semigroup]]s with identity.
BRANCH OF MATHEMATICS STUDYING ALGEBRAIC STRUCTURES AND THEIR RELATIONS
Abstract Algebra; Modern algebra; AbstractAlgebra; Applications of abstract algebra; History of abstract algebra; Abstract algebraist
In mathematics, more specifically algebra, abstract algebra or modern algebra is the study of algebraic structures. Algebraic structures include groups, rings, fields, modules, vector spaces, lattices, and algebras over a field.
Object–relational database         
DATABASE MANAGEMENT SYSTEM
ORDBMS; Object-relational database management system; Object–relational; Object-relational model; Object-relational DBMS; Object-relational dbms; Object relational database; Object-relational database; Object-relational; Object–relational model
An object–relational database (ORD), or object–relational database management system (ORDBMS), is a database management system (DBMS) similar to a relational database, but with an object-oriented database model: objects, classes and inheritance are directly supported in database schemas and in the query language. In addition, just as with pure relational systems, it supports extension of the data model with custom data types and methods.
ORDBMS         
DATABASE MANAGEMENT SYSTEM
ORDBMS; Object-relational database management system; Object–relational; Object-relational model; Object-relational DBMS; Object-relational dbms; Object relational database; Object-relational database; Object-relational; Object–relational model
Object Relational Database Management System (Reference: DBMS, DB)
C*-algebra         
BANACH *-ALGEBRA SUCH THAT |𝑥*𝑥|=|𝑥||𝑥*|=|𝑥|²
B*-algebra; C-star algebra; B-star algebra; C* algebra; C-star-algebra; C* Algebra; C* algebras; B-star-algebra; C-*-Algebra; B-*-Algebra; B-*-algebra; C-*-algebra; C*-algebras; B* algebra; Commutative C*-algebra; Cstar algebra; C star algebra; C-algebra; †-algebra; †-closed algebra
In mathematics, specifically in functional analysis, a C∗-algebra (pronounced "C-star") is a Banach algebra together with an involution satisfying the properties of the adjoint. A particular case is that of a complex algebra A of continuous linear operators on a complex Hilbert space with two additional properties:

Википедия

Relational algebra

In database theory, relational algebra is a theory that uses algebraic structures for modeling data, and defining queries on it with a well founded semantics. The theory was introduced by Edgar F. Codd.

The main application of relational algebra is to provide a theoretical foundation for relational databases, particularly query languages for such databases, chief among which is SQL. Relational databases store tabular data represented as relations. Queries over relational databases often likewise return tabular data represented as relations.

The main purpose of the relational algebra is to define operators that transform one or more input relations to an output relation. Given that these operators accept relations as input and produce relations as output, they can be combined and used to express potentially complex queries that transform potentially many input relations (whose data are stored in the database) into a single output relation (the query results).

Unary operators accept as input a single relation; examples include operators to filter certain attributes (columns) or tuples (rows) from an input relation.

Binary operators accept as input two relations; such operators combine the two input relations into a single output relation by, for example, taking all tuples found in either relation, removing tuples from the first relation found in the second relation, extending the tuples of the first relation with tuples in the second relation matching certain conditions, and so forth.

Other more advanced operators can also be included, where the inclusion or exclusion of certain operators gives rise to a family of algebras.